home *** CD-ROM | disk | FTP | other *** search
/ MacHack 2000 / MacHack 2000.toast / pc / The Hacks / Softshoe / Lisa's Mac Parts / Files / Errors / NotAFileError.h < prev    next >
Text File  |  2000-06-23  |  252b  |  19 lines

  1. // NotADirectoryError.h
  2.  
  3. #ifndef NotAFileError_h
  4. #define NotAFileError_h
  5.  
  6. #ifndef FileError_h
  7. #include "FileError.h"
  8. #endif
  9.  
  10. class NotAFileError: public FileError
  11.   {
  12.     public:
  13.         NotAFileError( OSErr error )
  14.           : FileError( error )
  15.           {}
  16.   };
  17.  
  18. #endif
  19.